home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / DF / Kap_2 / Menu.dxr / 00003_Najezd male menu.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  959 b   |  37 lines

  1. property Tlacitko, Znacka, Soubor
  2. global Spust
  3.  
  4. on getPropertyDescriptionList
  5.   set description to [:]
  6.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #string, #default: EMPTY])
  7.   return description
  8.   addProp(description, #Soubor, [#comment: "Soubor:", #format: #string, #default: EMPTY])
  9.   return description
  10. end
  11.  
  12. on getBehaviorDescription
  13.   return "N├íjezd a klik"
  14. end
  15.  
  16. on mouseEnter me
  17.   puppetSound(1, "Najezd")
  18.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  19.   set Tlacitko to the castNum of sprite the spriteNum of me
  20.   set the member of sprite the spriteNum of me to member (Tlacitko + 1)
  21. end
  22.  
  23. on mouseLeave me
  24.   set the cursor of sprite the spriteNum of me to -1
  25.   set the member of sprite the spriteNum of me to member Tlacitko
  26. end
  27.  
  28. on mouseDown me
  29.   puppetSound(1, "Klik")
  30.   set the member of sprite the spriteNum of me to member Tlacitko
  31. end
  32.  
  33. on mouseUp me
  34.   set Spust to Soubor
  35.   go(Znacka)
  36. end
  37.